home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / qbbs / cbv226.zip / QBBSBAT1.TXT < prev    next >
Text File  |  1990-06-01  |  438b  |  24 lines

  1. @echo off
  2. rem Remove the @ if you're not running DOS 3.3 or later.
  3. rem QuickBBS batch file incorporating CBV for non-networked systems
  4.  
  5. :start
  6. quickbbs
  7. if errorlevel 10 goto cbv
  8. goto quit
  9.  
  10. :restart
  11. quickbbs -r -e0
  12. rem The -e0 forces QuickBBS to exit when the caller
  13. rem terminates.  This is needed for proper operation.
  14. if errorlevel 10 goto cbv
  15. goto start
  16.  
  17. :cbv
  18. cbv
  19. if errorlevel 1 goto restart
  20. goto start
  21.  
  22. :quit
  23.  
  24.